home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / mallcrawl.swf / scripts / __Packages / Bottle.as < prev    next >
Encoding:
Text File  |  2007-09-28  |  383 b   |  20 lines

  1. class Bottle extends MovieClip
  2. {
  3.    function Bottle()
  4.    {
  5.       super();
  6.       this._y += 15;
  7.    }
  8.    function onEnterFrame()
  9.    {
  10.       if(this.hitTest(_global.Rescuer))
  11.       {
  12.          if(_global.Footer.lives < 3)
  13.          {
  14.             _global.Footer.setLives(_global.Footer.lives + 1);
  15.             ┬º┬ºpush(this.removeMovieClip());
  16.          }
  17.       }
  18.    }
  19. }
  20.